home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 20 / Cream of the Crop 20 (Terry Blount) (1996).iso / os2 / pine394.zip / doc / tech-notes / Makefile < prev    next >
Makefile  |  1996-05-25  |  2KB  |  61 lines

  1. # $Id: Makefile,v 1.3 1996/05/24 22:54:21 dlm Exp $
  2. #
  3. #            T H E    P I N E    M A I L   S Y S T E M
  4. #
  5. #   Laurence Lundblade and Mike Seibel
  6. #   Networks and Distributed Computing
  7. #   Computing and Communications
  8. #   University of Washington
  9. #   Administration Building, AG-44
  10. #   Seattle, Washington, 98195, USA
  11. #   Internet: lgl@CAC.Washington.EDU
  12. #             mikes@CAC.Washington.EDU
  13. #
  14. #   Please address all bugs and comments to "pine-bugs@cac.washington.edu"
  15. #
  16. #
  17. #   Pine and Pico are registered trademarks of the University of Washington.
  18. #   No commercial use of these trademarks may be made without prior written
  19. #   permission of the University of Washington.
  20. #
  21. #   Pine, Pico, and Pilot software and its included text are Copyright
  22. #   1989-1996 by the University of Washington.
  23. #
  24. #   The full text of our legal notices is contained in the file called
  25. #   CPYRIGHT, included with this distribution.
  26. #
  27. #
  28. #   Pine is in part based on The Elm Mail System:
  29. #    ***********************************************************************
  30. #    *  The Elm Mail System  -  Revision: 2.13                             *
  31. #    *                                                                     *
  32. #    *             Copyright (c) 1986, 1987 Dave Taylor               *
  33. #    *             Copyright (c) 1988, 1989 USENET Community Trust    *
  34. #    ***********************************************************************
  35. #
  36.  
  37. SOURCES= index.html introduction.html background.html installation.html \
  38.     cmd-line.html config.html config-notes.html low-level.html \
  39.     porting.html
  40.  
  41. TXTS= index.txt introduction.txt background.txt installation.txt \
  42.     cmd-line.txt config.txt config-notes.txt low-level.txt \
  43.     porting.txt
  44.  
  45. HTML2TXT= lynx-fm -underscore -nolist -dump
  46.  
  47. .SUFFIXES: .html .txt
  48.  
  49. tech-notes.txt:    $(TXTS)
  50.     cat $(TXTS) | sed -e 's/\[Previous\]//g' \
  51.         -e 's/\[Next\]//g' \
  52.         -e 's/\[Table of Contents\]//g' \
  53.         -e 's/\[Home]//g' \
  54.         -e 's/\[Pine Home]//g' > tech-notes.txt
  55.     rm $(TXTS)
  56.  
  57. .html.txt:
  58.     $(HTML2TXT) $< > $@
  59.  
  60.